home *** CD-ROM | disk | FTP | other *** search
- #
- # Tcl Library for tkCVS
- #
-
- #
- # $Id: commit.tcl,v 1.11 1995/11/22 00:16:42 davide Exp $
- #
- # Set up a small commit dialog.
- #
-
- proc commit_setup {} {
- global cvsglb
-
- toplevel .commit
- frame .commit.left
- frame .commit.right
- frame .commit.down -relief groove -border 2
-
- pack .commit.down -side bottom -fill x
- pack .commit.left -side left -fill y
- pack .commit.right -side left -fill both -expand 1
-
- label .commit.lvers -text "Version Number" -anchor w
- label .commit.lcomment -text "Comment" -anchor w
-
- entry .commit.tvers -relief sunken -textvariable version
- text .commit.tcomment -relief sunken -width 70 -height 10 \
- -wrap word -border 2 -setgrid yes
-
- # bind_motifentry .commit.tvers
- # bind_motiftext .commit.tcomment
-
- pack .commit.lvers .commit.lcomment -in .commit.left \
- -side top -fill x -pady 3
-
- pack .commit.tvers -in .commit.right \
- -side top -fill x -pady 3
-
- pack .commit.tcomment -in .commit.right \
- -side top -fill both -expand 1 -pady 3
-
- button .commit.ok -text "OK" \
- -command {
- cvs_commit $version [.commit.tcomment get 1.0 end] $cvsglb(commit_list)
- if {$cvscfg(auto_status) == "true"} {
- setup_dir
- }
- wm withdraw .commit
- }
- button .commit.quit -text "Quit" -command { wm withdraw .commit }
-
- pack .commit.ok .commit.quit -in .commit.down -side left \
- -ipadx 2 -ipady 2 -padx 4 -pady 4 -fill both -expand 1
-
- wm withdraw .commit
- wm title .commit "Commit Changes to a Module"
- wm minsize .commit 1 1
- }
-
- proc commit_run {} {
- global incvs
- global cvsglb
-
- if {! $incvs} {
- cvserror "This directory is not in CVS.\nPlease import it first."
- return 1
- }
-
- # If marked files, commit these. If no marked files, then
- # commit any files selected via listbox selection mechanism.
- # The cvsglb(commit_list) list remembers the list of files
- # to be committed.
- set cvsglb(commit_list) [workdir_list_marked_files]
- wm deiconify .commit
- }
-